home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / MAGAZINE / NEW_DAWN / !New_Dawn2 / Text / Articles / Soft1 / 5 < prev    next >
Text File  |  1990-11-30  |  725b  |  26 lines

  1.                MOVE (10,0,0)
  2.                AGAIN
  3.                
  4.      2         INCLUDE (2)
  5.                LOOP (10)
  6.                MOVE (40,0,0)
  7.                AGAIN
  8.  
  9. Animation 1 will move a lot slower than Animation 2 even
  10. though they are both going over the same distance.
  11.  
  12.      To make an object glide backwards and forwards across
  13. the screen, enter the following into the animation
  14. controller,
  15.  
  16.                INCLUDE (2)
  17.                LOOP (20)
  18.                MOVE (10,0,20)
  19.                AGAIN
  20.                LOOP (20)
  21.                MOVE (-10,0,-20)
  22.                AGAIN
  23.  
  24.      These are the main commands that are used in
  25. animations and if you play around with combinations of
  26. these, you can get some good results.